home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 1
/
LSD Compendium Deluxe 1.iso
/
a
/
programming
/
misc
/
m2_part1.lha
/
modula
/
dice
/
dice.LHA
/
include
/
stddef.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-09-04
|
326 b
|
23 lines
/*
* STDDEF.H
*
* (c)Copyright 1990, Matthew Dillon, All Rights Reserved
*/
#ifndef _STDDEF_H
#define _STDDEF_H
#ifndef NULL
#define NULL ((void *)0L)
#endif
#ifndef offsetof
#define offsetof(sname,fname) ((long)&((sname *)0)->fname)
#endif
typedef int ptrdiff_t;
typedef int size_t;
typedef char wchar_t;
#endif